Vector3 Constructor(Single[])
In This Topic
Initializes a new instance of the
Vector3 struct.
Syntax
'Declaration
Public Function New( _
ByVal () As System.Single _
)
public Vector3(
System.float[]
)
Parameters
- values
- The values to assign to the X, Y, and Z components of the vector. This must be an array with three elements.
Exceptions
Exception | Description |
System.ArgumentNullException | Thrown when is null . |
System.ArgumentOutOfRangeException | Thrown when contains more or less than three elements. |
See Also